home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / sound / sndbit / sndbite.bas < prev    next >
Encoding:
BASIC Source File  |  1994-11-07  |  289 b   |  13 lines

  1. '
  2. ' These are constants used by SNDBITE.VBX
  3. ' They are the values for the action property
  4. '
  5. Option Explicit
  6.  
  7. Global Const ACTION_NONE = 0
  8. Global Const ACTION_PLAY_ASYNC = 1
  9. Global Const ACTION_PLAY_SYNC = 2
  10. Global Const ACTION_PLAY_LOOP = 3
  11. Global Const ACTION_PLAY_STOP = 4
  12.  
  13.